home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Suzy B Software 2
/
Suzy B Software CD-ROM 2 (1994).iso
/
adult_ed
/
weather
/
makefile
< prev
next >
Wrap
Makefile
|
1995-05-02
|
734b
|
15 lines
# This is the makefile for the WEATHER program. It is a makefile for
# Mark Williams' C for the Atari ST series of computers. NOTE: If you want
# to use the CSD symbolic debugger, then the CFLAGS needs to have the -VCSD
# switch in it as well as the cc command will have the -VCSD switch in it
# too. Also, the executable created would best be a .PRG program. If on the
# other hand you didn't want to use the symbolic debugger, then remove the
# -VCSD switch from both the CFLAGS and from the cc command, and make the
# executable a .TOS program.
# Written by Rod Falanga
OBJ = weather.o dew_pt.o forecast.o heatindx.o humidity.o windchil.o
CFLAGS = -O -A
weather.tos: $(OBJ)
cc -f -o weather.tos $(OBJ) -lr -lm